Answered Questions

  • Solve this Programming Task in language of preference

    TASK 1: Programming Task in language of preference Imagine a customized computer keyboard with following layout : ERTYU1 DFGHJ2 CVBNM4 The keyboard only has above set of keys in the panel , For a given set on input word you need to output the path taken to press them , for example : Consider the input word is : RFGM the output will be : PRESS R GO DOWN PRESS F GO RIGHT ...

    prasobh

    • Jan 20th, 2016

    #Python solution # E R T Y U 1 # D F G H J 2 # C V B N M 4 #NJUE2C1M keys=[E,R,T,Y,U,1,D,F,G,H,J,2,C,V,B,N,M,4] key_board_width = 6 str...

    S VISHNUVARDHAN

    • Aug 14th, 2015

    "cpp #include using namespace std; #include #include char answer[5]; char a[4][7] = {"ERTYU1","DFGHJ2","CVBNM4 ; class trace { //protected: char input[100]; pu...