Skip to content

feat: Adds Zion's LeetCode PermutationDifference method to Lesson_13 hw #442

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
package com.codedifferently.lesson13;

import java.util.HashMap;

public class Lesson13 {

/**
* Provide the solution to LeetCode 3146 here:
* https://leetcode.com/problems/permutation-difference-between-two-strings
*/
public int findPermutationDifference(String s, String t) {
return 0;
var charLocation = new HashMap<Character, Integer>();
int charSum = 0;
for (int i = 0; i < s.length(); i++) {
charLocation.put(s.charAt(i), i);
}
for (int i = 0; i < t.length(); i++) {
int charResult = charLocation.get(t.charAt(i));
charSum += Math.abs(charResult - i);
}
return charSum;
}
}
13 changes: 12 additions & 1 deletion lesson_13/maps_ts/src/lesson13.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,16 @@
* https://leetcode.com/problems/permutation-difference-between-two-strings
*/
export function findPermutationDifference(s: string, t: string): number {
return 0;
const charLocation = new Map<string, number>();
let charSum = 0;
for (let i = 0; i < s.length; i++) {
charLocation.set(s[i], i);
}
for (let i = 0; i < t.length; i++) {
const charResult = charLocation.get(t.charAt(i));
if (charResult !== undefined) {
charSum += Math.abs(charResult - i);
}
}
return charSum;
}