Sort by

recency

|

93 Discussions

|

  • + 0 comments

    Scala:

    arr.map(x => if (x < 0) -x else x)
    
  • + 0 comments

    Can we use this list in website making to arrange things properly.

  • + 0 comments

    can you help me to integrate this algorithem with my Blogging website. i want to use it on my wordpress website.

  • + 0 comments

    Can you please help to update the contact form of my home appliance repair website for me. Because i am not recieving emails.

  • + 0 comments

    Erlang Solution:

    read()->
        case io:fread("","~d") of
            eof -> ok;
            {ok,[N]} ->
                io:format("~p~n",[abs(N)]),
            read()
        end.
    
    main() ->
    	read().