{"id":39823293,"url":"https://github.com/ahmetkasif/kmaxit","last_synced_at":"2026-01-18T13:01:21.001Z","repository":{"id":29321246,"uuid":"32854750","full_name":"ahmetkasif/kmaxit","owner":"ahmetkasif","description":"Remake of Maxit Game using LibGDX (Outdated, will rebuild when i get some free-time)","archived":false,"fork":false,"pushed_at":"2022-09-20T06:06:30.000Z","size":143798,"stargazers_count":11,"open_issues_count":1,"forks_count":2,"subscribers_count":11,"default_branch":"master","last_synced_at":"2024-05-28T15:07:36.103Z","etag":null,"topics":["artificial-intelligence","game","greedy-algorithms","java","libgdx"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ahmetkasif.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-03-25T09:27:29.000Z","updated_at":"2024-05-17T07:51:04.000Z","dependencies_parsed_at":"2023-01-14T14:45:15.180Z","dependency_job_id":null,"html_url":"https://github.com/ahmetkasif/kmaxit","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ahmetkasif/kmaxit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmetkasif%2Fkmaxit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmetkasif%2Fkmaxit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmetkasif%2Fkmaxit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmetkasif%2Fkmaxit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ahmetkasif","download_url":"https://codeload.github.com/ahmetkasif/kmaxit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmetkasif%2Fkmaxit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28536686,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T10:13:46.436Z","status":"ssl_error","status_checked_at":"2026-01-18T10:13:11.045Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["artificial-intelligence","game","greedy-algorithms","java","libgdx"],"created_at":"2026-01-18T13:01:12.072Z","updated_at":"2026-01-18T13:01:20.949Z","avatar_url":"https://github.com/ahmetkasif.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# KittenMaxit - now using LibGDX\n\nLibGDX kütüphanesi yardımıyla geliştirilen Maxit oyunu. Kaynak kodunu yerel makinanızda derlemek isterseniz, LibGDX'in konu hakkındaki şu yazısını okuyun : https://github.com/libgdx/libgdx/wiki/Gradle-on-the-Commandline#packaging-for-the-desktop.\n\nDistributions klasöründen istediğiniz versiyona tıklayıp, ardından raw formatta göster demenizi takiben dosya inmeye başlayacaktır. Uygulamayı çalıştırabilmek için, 32bit Java sahibi olmanız gerekmektedir. İndirme konusunda sıkıntı yaşayanlar için indirme linki :\n\nhttps://github.com/ahmetkasif/KittenMaxit/blob/master/distributions/kmaxit+%20v1.6.1.jar?raw=true\n\nIf you want to contribute, project is ready to be imported to eclipse. You have to have 32bit Java installed in order to use this application, 64 bit Java is not supperted.\n\nConributors\n\n[Abdullah Öğük](https://github.com/abdullahoguk)\n\n\n**Problem**     \n Writing a program to play MAXIT. The board is represented as an N-by-N grid of numbers randomly placed at the start of the game. One position is designated as the initial current \nposition. Two players alternate turns. At each turn, a player must select a grid element in the \ncurrent row or column. The value of the selected position is added to the player’s score, and \nthat position becomes the current position and cannot be selected again. Players alternate \nuntil all grid elements in the current row and column are already selected, at which point the \ngame ends and the player with the higher score wins.\n\n\n**Solution**   \nSolution solution is based on greedy approach. “A greedy algorithm is an algorithm that follows the problem solving heuristic of making the locally optimal choice at each stage with the hope of finding a global optimum. In many problems, a greedy strategy does not in general produce an optimal solution, but nonetheless a greedy heuristic may yield locally optimal solutions that approximate a global optimal solution in a reasonable time.”   \n\n\n**Algoritm**\n```Java\nfor all i values starting from 0 to point of last chosen point on x axis, \n\tif the previous number is less than current number, \n\t\tassign current number \n\nfor all i values starting from the last chosen point to 5 on x axis, \n\tif the previous number is less than current number, \n\t\tassign current number \n\nfor all k values starting from 0 to point of last chosen point on y axis, \n\tif the previous number is less than current number, \n\t\tassign current number \n\nfor all k values starting from the last chosen point to 5 on y axis, \n\tif the previous number is less than current number, \n\t\tassign current number\n```\n\n#Screenshots\n![Maxit1](http://i.imgur.com/3QvTDrN.png)\n![Maxit2](http://i.imgur.com/G1rezQr.png)\n\n\n\n \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmetkasif%2Fkmaxit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fahmetkasif%2Fkmaxit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmetkasif%2Fkmaxit/lists"}