(self, k: int)
| 5 | ''' |
| 6 | class Solution: |
| 7 | def getRow(self, k: int) -> List[int]: |
| 8 | res = [1]*(k+1) |
| 9 | #res[0]=1 |
| 10 | for i in range(1,k): |
| 11 | for j in range(i,0,-1): |
| 12 | res[j]+=res[j-1] |
| 13 | return res |
nothing calls this directly
no outgoing calls
no test coverage detected