{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":605690868,"defaultBranch":"main","name":"JAVA","ownerLogin":"GURUSUJAN","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2023-02-23T17:38:07.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/94339643?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1677173954.334144","currentOid":""},"activityList":{"items":[{"before":"3273422017d519a61f4da5efe3cbb50672d4101a","after":"7f2f37b399dc313f15e8dd7e865351dcbd91c4b0","ref":"refs/heads/main","pushedAt":"2023-04-04T05:02:16.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"GURUSUJAN","name":"GURUSUJAN REDDY","path":"/GURUSUJAN","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/94339643?s=80&v=4"},"commit":{"message":"Create Week5_Day1_Question2.java\n\nhttps://www.hackerrank.com/contests/cse310-week5-day2-seee/challenges/week5-day1-question2/problem","shortMessageHtmlLink":"Create Week5_Day1_Question2.java"}},{"before":"5735a47f966747bee3e0d4097cfb645aa33ce02e","after":"3273422017d519a61f4da5efe3cbb50672d4101a","ref":"refs/heads/main","pushedAt":"2023-04-04T05:01:36.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"GURUSUJAN","name":"GURUSUJAN REDDY","path":"/GURUSUJAN","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/94339643?s=80&v=4"},"commit":{"message":"Create Week5_Day1_Question1.java\n\nhttps://www.hackerrank.com/contests/cse310-week5-day2-seee/challenges/week5-day1-question1/problem","shortMessageHtmlLink":"Create Week5_Day1_Question1.java"}},{"before":"4cae64c3e983f0514dcd9f24580cdab83b77311b","after":"5735a47f966747bee3e0d4097cfb645aa33ce02e","ref":"refs/heads/main","pushedAt":"2023-04-04T04:59:15.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"GURUSUJAN","name":"GURUSUJAN REDDY","path":"/GURUSUJAN","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/94339643?s=80&v=4"},"commit":{"message":"Create cse310_week11_day1_ques2.java\n\nRiya asked her friend to make calculator using nested class using the following operation. 1. The outer class name is Outer_Calculator 2. The inner class name is static Inner_Calculator with four method addition , subtraction , multiplication and division. 3. Write main method under the class of Outer_Calculator.\r\n\r\nif the input is integer than display the massage as \"invalid input\" and if the operator is not valid operator than display the massage as \"invalid operator\".\r\n\r\nInput Format\r\n\r\nLine 1: Read 1st Number Line 2: Read 2nd Number Line 3: Read Operator\r\n\r\nConstraints\r\n\r\nNumber n1, n2 > 0 Operator : +, -, *, / (any one)\r\n\r\nOutput Format\r\n\r\nDisplay the result\r\n\r\nSample Input 0\r\n\r\n4\r\n5\r\n+\r\nSample Output 0\r\n\r\n9","shortMessageHtmlLink":"Create cse310_week11_day1_ques2.java"}},{"before":"0611c1c9d760f5ad9bff90f01b839d613cfe38e3","after":"4cae64c3e983f0514dcd9f24580cdab83b77311b","ref":"refs/heads/main","pushedAt":"2023-04-04T04:58:17.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"GURUSUJAN","name":"GURUSUJAN REDDY","path":"/GURUSUJAN","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/94339643?s=80&v=4"},"commit":{"message":"Create cse310_week11_day1_ques1.java\n\nCreate a class Person having a single attribute: age. Now, create a functional interface with the following method in it: void find(Person p[]); Create a Demo class having main() method and ask the user to createa and initialize \"n\" Person objects (where \"n\" is input given by user). Now, use the lambda expression that will use this find() method to find out how many Persons have age greater than 25.\r\n\r\nInput Format\r\n\r\nYour program will take 2 types of inputs. First user input will be no. of person objects \"n\" to be created. Remaining user inputs will be \"age\" value of every Person object created. If value of \"n\" entered is less than 1, then display message \"Invalid input\" and no further input should be taken. Otherwise, display no. of persons having age greater than 25.\r\n\r\nConstraints\r\n\r\nValue of \"n\" and \"age\" should be greater than 0. If any invalid age (e.g. -2) is entered the user, then take 18 as the default age.\r\n\r\nOutput Format\r\n\r\nDisplay no. of persons having age greater than 25. If value of \"n\" (i.e. no. of person objects) entered is less than 1, then display message \"Invalid input\".\r\n\r\nSample Input 0\r\n\r\n3\r\n26\r\n14\r\n30\r\nSample Output 0\r\n\r\n2","shortMessageHtmlLink":"Create cse310_week11_day1_ques1.java"}},{"before":"f5c50a5144d4f3274f93aa199e51deafccf6da27","after":"0611c1c9d760f5ad9bff90f01b839d613cfe38e3","ref":"refs/heads/main","pushedAt":"2023-03-07T13:47:58.643Z","pushType":"push","commitsCount":1,"pusher":{"login":"GURUSUJAN","name":"GURUSUJAN REDDY","path":"/GURUSUJAN","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/94339643?s=80&v=4"},"commit":{"message":"Create cse310_week7_day2_ques2.java\n\nPuneet and Virat are playing a game. Virat tells a number that Puneet need to check whether that number is even and multiple of 13 or not. Write a program in which implement a method public boolean check(int n) which will return true if number satisfy the conditions else return false.\r\n\r\nInput Format\r\n\r\nOne integer value representing number given by Virat.\r\n\r\nConstraints\r\n\r\nNumber will lie between 10 and 500.\r\n\r\nOutput Format\r\n\r\nTrue/False according to the value returned by the method or will print Invalid Input in case of number did not match the constraints.\r\n\r\nSample Input 0\r\n\r\n13\r\nSample Output 0\r\n\r\nFalse\r\nSample Input 1\r\n\r\n130\r\nSample Output 1\r\n\r\nTrue","shortMessageHtmlLink":"Create cse310_week7_day2_ques2.java"}},{"before":"41f3c44f437ffe9bfa13f0154561a590057c3d20","after":"f5c50a5144d4f3274f93aa199e51deafccf6da27","ref":"refs/heads/main","pushedAt":"2023-03-07T13:47:09.366Z","pushType":"push","commitsCount":1,"pusher":{"login":"GURUSUJAN","name":"GURUSUJAN REDDY","path":"/GURUSUJAN","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/94339643?s=80&v=4"},"commit":{"message":"Create cse310_week7_day2_ques1.java\n\nYou need to create an application for a company, who is planning to maintain passwords of his employees, so to manage passwords company officials are thinking about of python case format. In Python case format, particular String is concerted into complete lower case and space is replaced by special character “$”. In this format , password which is taken as string that must consist with more than 1 word.\r\n\r\nInput Format\r\n\r\nIn first line , you need to enter Password\r\n\r\nConstraints\r\n\r\nmake password is of string type only\r\n\r\nOutput Format\r\n\r\nconvert entered password into python case format which is mentioned in question statement\r\n\r\nSample Input 0\r\n\r\nHello World\r\nSample Output 0\r\n\r\nhello$world","shortMessageHtmlLink":"Create cse310_week7_day2_ques1.java"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAADEYxHCAA","startCursor":null,"endCursor":null}},"title":"Activity · GURUSUJAN/JAVA"}