1,566 reputation
316
bio website stackoverflow.com/users/…
location Istanbul, Turkey
age 23
visits member for 1 year, 4 months
seen 7 hours ago
stats profile views 83

Enthusiastic about computer and algorithms

have special interest in Git


Apr
11
comment Extend implementation of a listener
don't be shy, show some code
Apr
11
comment Reading a file and converting the input into two arrays
yes, I see the first column
Apr
3
comment How to copy an arraylist to not reflecting changes in the original list?
you can clone but, it may not the solution, try searching deep copy and shallow copy
Mar
31
comment rand() gives still the same value
try this before for loop: srand(time(NULL));
Mar
31
answered How do i remove the latest commit from my repo?
Mar
31
comment Multiplying two matrices in Java
to be more precise, c[i][j] += a[i][k] * b[k][j]
Mar
31
comment Multiplying two matrices in Java
your algorithm is wrong.
Mar
31
comment Creating static method to compare two strings char by char. Return true if all the letters in string a are in string b. Else, then return false
think about using break in your code. If you cannot find a char in the second string, then you should return false immediately. Otherwise return true at the end of the fnction.
Mar
31
comment Multiplying two matrices in Java
have you tried anything? or have you asked uncle Google?
Mar
27
comment JAVA - How to work out last day of a month entered by the user
doesn't it still produce value for current month?
Mar
27
answered JAVA - How to work out last day of a month entered by the user
Mar
27
comment Extract character from 2d string array
@CuriousSid thnks, updated
Mar
27
comment Extract character from 2d string array
arr is a 1D array of string and 2D array of chars. 'A' is a char as well. Question is, how do you declare arr ?
Mar
19
awarded  Tenacious
Mar
9
answered Java - For Each Derived class in a Collection of Base classes
Mar
9
comment Android make listen onClickListener of disabled button
how can one click a disabled button?
Mar
8
accepted Is there a way to order JUnit testcases in TeamCity?
Mar
7
comment Persist data in google app engine datastore
you can persist without need of a transaction, but as you see, you need a transaction if you want to flush. I advise you to use txns since you are persisting multiple data. In a case of an error, you can simply rollback.
Mar
6
answered Is there a way to order JUnit testcases in TeamCity?
Mar
6
revised Is there a way to order JUnit testcases in TeamCity?
added 324 characters in body