0% found this document useful (0 votes)
99 views

2d Array and Recursion Bonus Problems PDF

This document contains links to resources about 2D arrays and recursion problems. For 2D arrays, there are two links about a boolean matrix question and rotating a square matrix 90 degrees. For recursion, there are several links covering topics such as calculating the value of log base n recursively, reversing an integer recursively, a recursive sequence problem, wildcard pattern matching, counting binary numbers with more ones than zeros, finding numbers with a given sum of digits, longest common prefix using divide and conquer, and calculating a target sum from array elements.

Uploaded by

Sandeep Dwivedi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
99 views

2d Array and Recursion Bonus Problems PDF

This document contains links to resources about 2D arrays and recursion problems. For 2D arrays, there are two links about a boolean matrix question and rotating a square matrix 90 degrees. For recursion, there are several links covering topics such as calculating the value of log base n recursively, reversing an integer recursively, a recursive sequence problem, wildcard pattern matching, counting binary numbers with more ones than zeros, finding numbers with a given sum of digits, longest common prefix using divide and conquer, and calculating a target sum from array elements.

Uploaded by

Sandeep Dwivedi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

2D Arrays -

● https://www.geeksforgeeks.org/a-boolean-matrix-question/
● https://www.geeksforgeeks.org/inplace-rotate-square-matrix-by-90-degrees/

Recursion -
● https://www.geeksforgeeks.org/find-the-value-of-lnn-using-recursion/
● https://leetcode.com/problems/reverse-integer/​(Do it Recursively)
● https://practice.geeksforgeeks.org/problems/recursive-sequence/0
● https://www.techiedelight.com/find-binary-strings-can-formed-given-wildcard-pattern
● https://www.techiedelight.com/find-n-digit-binary-numbers-having-more-one-than-zer
o/
● https://www.techiedelight.com/find-all-n-digit-numbers-given-sum-digits/
● https://www.geeksforgeeks.org/longest-common-prefix-using-divide-and-conquer-alg
orithm/
● https://www.techiedelight.com/find-ways-calculate-target-elements-array/

You might also like