Sort by

recency

|

37 Discussions

|

  • + 0 comments

    Rummy 777 Wealth brings you a thrilling Rummy experience, combining smooth gameplay with the excitement of competing for fantastic rewards.

  • + 0 comments

    If you're looking for a game that combines luck with strategy, Aviator https://aviator-game.ng/ is perfect. The suspense builds up as you watch the plane climb, knowing each second could be the difference between a huge win or a missed opportunity. It’s so different from typical slot games because you’re actively deciding when to cash out, which gives me a real sense of control. Definitely recommend it for thrill-seekers!

  • + 0 comments

    C++ (more at https://github.com/IhorVodko/Hackerrank_solutions, feel free to give a star :) )

    std::string pokerNim(
            int _additionsLimit
        ,   std::vector<int> _chips
    ){
        auto binSum = 0;
        for(auto const & size : _chips){
            binSum ^= size;
        }
        return binSum ? "First" : "Second";
    }
    
  • + 0 comments

    Java 8

    public static String pokerNim(int k, List<Integer> c) {
      return c.stream().reduce(0, (res, i) -> res ^ i) != 0?"First":"Second";
    }
    
  • + 0 comments

    ****solution in java

    done like this and it passed all the testcases HAPPY CODING

    public static String pokerNim(int k, List c) { // Write your code here int a = 0; for(int i=0;i