Skip to content

Instantly share code, notes, and snippets.

View manjunathshiva's full-sized avatar

Manjunath Janardhan manjunathshiva

View GitHub Profile
@AkashC-goML
AkashC-goML / dspy.ipynb
Last active June 18, 2024 03:03
dspy.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
class Solution {
public:
int subarraySum(vector<int>& nums, int k) {
//For fast I/O in C++
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n = nums.size();
if(n==0)